home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "RegSrvConstants"
- Attribute VB_Description = "This is the contants file that needs to be loaded into each project that uses an RegDB object."
- Option Explicit
-
- 'Error return values
- Public Const gknRSErrInvalidSection As Integer = 1001
- Public Const gknRSErrInvalidKey As Integer = 1002
- Public Const gknRSErrRegBaseNotRegistered As Integer = 1003
- Public Const gknRSErrInvalidHKey As Integer = 1004
- Public Const gknRSErrRemoveKey As Integer = 1005
- Public Const gknRSErrRemoveSection As Integer = 1006
- Public Const gknRSErrSetValue As Integer = 1007
-
- 'Reg Key ROOT Types
- Public Const HKEY_CLASSES_ROOT = &H80000000
- Public Const HKEY_CURRENT_USER = &H80000001
- Public Const HKEY_LOCAL_MACHINE = &H80000002
- Public Const HKEY_USERS = &H80000003
-
-